Frame Ordering Indicators
An AWT context may request that a frame be reordered using theMyFrameReorderRequest
callback. The context specifies the new placement of the frame using theReorderRequest
type.
enum ReorderRequest { eBringToFront = 0, eSendToBack, eSendBehindFront };Constant descriptions
See the description of the function
eBringToFront
- Bring the frame to the front.
eSendToBack
- Send the frame to the back.
eSendBehindFront
- Send the frame behind the front frame.
MyRequestFrame
for more information about using these values.